home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / DYN30C.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  136 lines

  1. name Dynapath Delta 30 Conversational
  2.  
  3. N >4
  4. G >2 (
  5. X ->3.>4
  6. Y ->3.>4
  7. Z ->3.>4
  8. I ->3.>4
  9. J ->3.>4
  10. K ->3.>4
  11. Q ->3.>4
  12. R ->3.>4
  13. W ->3.>4
  14. P ->3.>4
  15. F >3.1
  16. L >3.3
  17. H >2
  18. D >2
  19. T >2
  20. M >2
  21. S >4
  22. U >2 G
  23. $ 00
  24. e 00
  25. ^ 00
  26.  
  27. ModalLetters X Y Z F W U              # List of letters that are modal    
  28.  
  29. ModalGs                               # List of g codes that are modal    
  30.  
  31. Sequence#s N 1 2 2                    # Char, freq, incr & start          
  32. First#? N                             # Y or N  'Output 1st sequence no.  
  33. Last#? N                              # Y or N  'Output last sequence no. 
  34.  
  35. HCode X                               # X or X U  'Horizontal char.       
  36. VCode Y                               # Y or Y V  'Vertical char.         
  37. Dcode Z                               # Depth char.                       
  38. FeedCode F                            # Feed rate char.                   
  39.  
  40. Comment ! @$                          # Begin End comment char.           
  41.  
  42. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  43. Coolant 8 9 7                         # On, Off & Mist m codes            
  44. DComp 41 42 40                        # Left, Right & Cancel m codes      
  45. LComp 43 49                           # On & Off codes                    
  46.  
  47. Feed G1                             # Linear move                       
  48. Rapid G0                            # Rapid positioning word            
  49.  
  50. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  51.  
  52. Work G                                # Work offset register              
  53.  
  54. CtrCode I J                           # I J or R or I J K L               
  55. Helical? N
  56.  
  57. Spaces? N                             # Y or N  'Spaces between words     
  58.  
  59. EACH $0                                # End of block word                 
  60.  
  61. Incremental? N                        # Y or N  'Inc or abs output        
  62. CtrIncremental? N                     # Y or N  'Inc or abs I & J         
  63. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  64.  
  65. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  66.  
  67. WorkDefault 1                         # Work offset register default      
  68.  
  69. Drill 1                               # Drilling canned/manual cycle      
  70. G0 X[H] Y[V] Z[D] U1 W[Vclear] F[FRate]
  71. G0 X[H] Y[V]
  72. end cancel
  73.  
  74. Peck 1                                # Pecking canned/manual cycle       
  75. G0 X[H] Y[V] Z[D] U3 K[VBite] W[Vclear] F[FRate]
  76. G0 X[H] Y[V]
  77. end cancel
  78.  
  79. Tap 1                                 # Tapping canned/manual cycle       
  80. G0 X[H] Y[V] Z[D] U4 W[Vclear] F[Frate]
  81. G0 X[H] Y[V]
  82. end cancel
  83.  
  84. Ream                                  # Reaming canned/manual cycle       
  85. G0 X[H] Y[V] Z[D] U2 W[Vclear] F[FRate]
  86. G0 X[H] Y[V]
  87. end cancel
  88.  
  89. Bore                                  # Boring canned/manual cycle        
  90. G0 X[H] Y[V] Z[D] U7 W[Vclear] F[FRate]
  91. G0 X[H] Y[V]
  92. end cancel
  93.  
  94. Cancel                                # Cancel a canned/manual cycle      
  95. G0 U0
  96. end
  97.  
  98. StartCode                             # Start of the program              
  99. G[Program#] ^0
  100. End
  101.  
  102. 1stToolChange                         # First tool change                 
  103. G9 T[Tool] M6
  104. G9 M[Cool]
  105. G9 M[Direct] S[Speed]
  106. G0 X[H] Y[V]
  107. G0 Z[D]
  108. End
  109.  
  110. Infeed                                # Enable cutter comp                
  111. G1 Z[D] F[Plunge]
  112. G1 X[H] Y[V] F[FRate]
  113. end
  114.  
  115. Outfeed                               # Disable cutter comp               
  116. G1 X[H] Y[V]
  117. end
  118.  
  119. ToolChange                            # Secondary tool changes            
  120. G9 M6 S100
  121. G9 T[Tool] M3 S[Speed]
  122. G9 M[Cool]
  123. G0 X[H] Y[V]
  124. G0 Z[D]
  125. End
  126.  
  127. EndCode                               # End of the program                
  128. G9 M30
  129. e0
  130. End
  131.  
  132. Replace ")$^" with ")"
  133. Replace "e" with "END"
  134. Replace "!" with "(T)"
  135. Replace "@" with "$"
  136.